home *** CD-ROM | disk | FTP | other *** search
Text File | 1993-10-02 | 274 b | 11 lines | [TEXT/EDIT] |
- main()
- {
- a = newvector(10);
- b = newstring(20);
- stdout << "typeof(1)=" << typeof(1) << "\n";
- stdout << "typeof(a)=" << typeof(a)
- << ", sizeof(a)=" << sizeof(a) << "\n";
- stdout << "typeof(b)=" << typeof(b)
- << ", sizeof(b)=" << sizeof(b) << "\n";
- }
-